// we'll let it through.
//
// Note that we only check this for non-registry sources,
- // however, as registries countain enough version information in
+ // however, as registries contain enough version information in
// the package id to disambiguate
if a.source_id().is_registry() {
return false
};
let (author_name, email) = discover_author()?;
- // Hoo boy, sure glad we've got exhaustivenes checking behind us.
+ // Hoo boy, sure glad we've got exhaustiveness checking behind us.
let author = match (cfg.name, cfg.email, author_name, email) {
(Some(name), Some(email), _, _) |
(Some(name), None, _, Some(email)) |
let mut cargotoml_path_specifier = String::new();
- // Calculare what [lib] and [[bin]]s do we need to append to Cargo.toml
+ // Calculate what [lib] and [[bin]]s do we need to append to Cargo.toml
for i in &opts.source_files {
if i.bin {